home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / MSINC.PAK / WOWNT16.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  5KB  |  139 lines

  1. /*++ BUILD Version: 0001    // Increment this if a change has global effects
  2.  
  3. Copyright (c) 1995-1996, Microsoft Corporation
  4.  
  5. Module Name:
  6.  
  7.     wownt16.h
  8.  
  9. Abstract:
  10.  
  11.     Procedure declarations for functions in WOW32.DLL callable by
  12.     3rd-party 16-bit thunking code.
  13.  
  14. --*/
  15.  
  16. /*
  17.  *      C/C++ Run Time Library - Version 8.0
  18.  *
  19.  *      Copyright (c) 1997 by Borland International
  20.  *      All Rights Reserved.
  21.  *
  22.  */
  23.  
  24. #ifndef _WOWNT16_
  25. #define _WOWNT16_
  26. #pragma option -b
  27.  
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif
  31.  
  32. //
  33. // 16:16 -> 0:32 Pointer translation.
  34. //
  35. // GetVDMPointer32W will convert the passed in 16-bit address
  36. // to the equivalent 32-bit flat pointer. The upper 16 bits
  37. // of the address are treated according to the value passed in
  38. // fMode: if fMode = 1, then the hiword of vp is used as a
  39. // protected mode selector. Otherwise it is used as a real mode
  40. // segment value.
  41. // The lower 16 bits are treated as the offset.
  42. //
  43. // The return value is 0 if the selector is invalid.
  44. //
  45. // NOTE:  Limit checking is not performed in the retail build
  46. // of Windows NT.  It is performed in the checked (debug) build
  47. // of WOW32.DLL, which will cause 0 to be returned when the
  48. // limit is exceeded by the supplied offset.
  49. //
  50.  
  51. DWORD FAR PASCAL GetVDMPointer32W(LPVOID vp, UINT fMode);
  52.  
  53.  
  54. //
  55. // Win32 module management.
  56. //
  57. // The following routines accept parameters that correspond directly
  58. // to the respective Win32 API function calls that they invoke. Refer
  59. // to the Win32 reference documentation for more detail.
  60.  
  61. DWORD FAR PASCAL LoadLibraryEx32W(LPCSTR lpszLibFile, DWORD hFile, DWORD dwFlags);
  62. DWORD FAR PASCAL GetProcAddress32W(DWORD hModule, LPCSTR lpszProc);
  63. DWORD FAR PASCAL FreeLibrary32W(DWORD hLibModule);
  64.  
  65. //
  66. // Generic Thunk Routine:
  67. //
  68. //   CallProc32W
  69. //
  70. // Transitions to 32 bits and calls specified routine
  71. //
  72. // This routine can pass a variable number of arguments, up to 32, to the
  73. // target 32-bit routine. These arguments are given to CallProc32W following
  74. // the 3 required parameters.
  75. //
  76. //   DWORD cParams          - Number of optional DWORD parameters (0-32)
  77. //
  78. //   LPVOID fAddressConvert - Bit Field, for 16:16 address Convertion. The
  79. //                            optional parameters can be automatically converted
  80. //                            from a 16:16 address format to flat by specifying
  81. //                            a 1 bit in the corresponding position in this mask.
  82. //                            eg (bit 1 means convert parameter 1 from 16:16
  83. //                              to flat address before calling routine)
  84. //
  85. //   DWORD lpProcAddress   -  32 bit native address to call (use LoadLibraryEx32W
  86. //                            and GetProcAddress32W to get this address).
  87. //
  88. // Returns:
  89. //   What ever the API returned on 32 bit side in AX:DX
  90. //
  91. // Error Returns:
  92. //   AX = 0, more than 32 parameters.
  93. //
  94. //
  95. // The function prototype must be declared by the application source code
  96. // in the following format:
  97. //
  98. // DWORD FAR PASCAL CallProc32W( DWORD p1, ... , DWORD lpProcAddress,
  99. //                                        DWORD fAddressConvert, DWORD cParams);
  100. //
  101. // where the value in cParams must match the actual number of optional
  102. // parameters (p1-pn) given AND the "DWORD p1, ..." must be replaced by
  103. // the correct number of parameters being passed.  For example, passing 3
  104. // parameter would simply require the removal of the ... and it insertion of
  105. // "DWORD p2, DWORD p3" instead.  The fAddressConvert parameter uses bit 1
  106. // for the last parameter (p3 in our example), with bit 2 for the next to last,
  107. // etc.
  108. //
  109. // Generic Thunk Routine:
  110. //
  111. //   CallProcEx32W
  112. //
  113. // Transitions to 32 bits and calls specified routine
  114. //
  115. // Similar to the CallProc32W function, the CallProcEx32W is an equivalent
  116. // function that is C calling convention and allows easier and more flexible
  117. // prototyping.  See the prototype below.  The fAddressConvert parameter uses
  118. // bit 1 for the 1st parameter, bit 2 for the 2nd parameter, etc.
  119. //
  120. // Both CallProc32W and CallProcEx32W accept a flag OR'd with the parameter
  121. // count to indicate the calling convention of the function in 32 bits.
  122. // For example, to call a cdecl function in 32-bits with 1 parameter, it would
  123. // look like this:
  124. //
  125. // dwResult = CallProcEx32W( CPEX_DEST_CDECL | 1, 0, dwfn32, p1 );
  126. //
  127.  
  128. DWORD FAR CDECL CallProcEx32W( DWORD, DWORD, DWORD, ... );
  129.  
  130. #define CPEX_DEST_STDCALL   0x00000000L
  131. #define CPEX_DEST_CDECL     0x80000000L
  132.  
  133. #ifdef __cplusplus
  134. }
  135. #endif
  136.  
  137. #pragma option -b.
  138. #endif /* !_WOWNT16_ */
  139.